home *** CD-ROM | disk | FTP | other *** search
- struct Time
- {
- int hour1, hour2;
- int min1, min2;
- int sec1, sec2;
- };
-
- extern int realtime;
-
- void DrawTime(struct Window *win, struct AppPrefs *prefs);
- struct tm *GetTime( struct Time *myTime, struct AppPrefs *prefs );
- void RedrawTime(struct Window *win, struct AppPrefs *prefs);
- void CheckAlarm(struct AppPrefs *prefs, struct Time *myTime);
- void DrawAlarm(int color);
- void EraseAlarm(int color);
- void DrawTimer(int color);
- void EraseTimer(int color);
- BOOL CheckTimer(struct AppPrefs *prefs, struct Time *myTime);
- void TurnTimerOff(struct AppPrefs *prefs);
- void ShowAlarm(struct AppPrefs *prefs);
- void ShowTimer(struct AppPrefs *prefs);
-